Skip to main content
GET
/
v1
/
toolkits
/
{toolkit_id}
/
tools
Get Toolkit Tools
curl --request GET \
  --url https://api.xpander.ai/v1/toolkits/{toolkit_id}/tools \
  --header 'x-api-key: <api-key>'
[
  {}
]
Retrieve all tools within a specific toolkit, formatted in the tool calling structure compatible with AI model function calling.

Path Parameters

toolkit_id
string
required
Unique identifier of the toolkit (UUID format)

Response

Returns an array of tool definitions in OpenAI function calling format:
name
string
Tool function name
description
string
Description of what the tool does
parameters
object
JSON Schema defining the tool’s input parameters

Example Response

[
  {
    "name": "search_web",
    "description": "Search the web for information",
    "parameters": {
      "type": "object",
      "properties": {
        "query": {
          "type": "string",
          "description": "The search query"
        },
        "max_results": {
          "type": "integer",
          "description": "Maximum number of results to return"
        }
      },
      "required": ["query"]
    }
  }
]

Authorizations

x-api-key
string
header
required

API Key for authentication

Path Parameters

toolkit_id
string
required

Response

Successful Response

The response is of type Response Get Toolkit Tools V1 Toolkits Toolkit Id Tools Get · object[].